
This resource address returns the configuration properties of the alert
specified by the mandatory uri parameter from the specified database.
Upon success, MarkLogic Server returns status code 200 (OK). The response body contains the requested data. If the payload is malformed, a status code of 400 (Bad Request) is returned. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.
manage-user role, or the following
privilege: http://marklogic.com/xdmp/privileges/manage
The structure of the output returned from this REST API is as follows:
idurinamedescriptiontriggersThis is a complex structure with the following children:
triggerdomainsThis is a complex structure with the following children:
domainoptionsThis is a complex structure with the following children:
optionactionsThis is a complex structure with the following children:
action
curl -X GET --anyauth -u admin:admin --header "Content-Type:application/json" \
http://localhost:8002/manage/v2/databases/Documents/alert/configs/properties?uri=my-alert-config
==> Returns the properties of the "my-alert-config" alert for the Documents
database.